
.footer {
    background-color: var(--footer-color);
    color: var(--background-color);
    padding: 3rem 0;
}

.footer h5 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-link {
    color: var(--background-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--background-color);
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
}

/* 
#products {
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

#products:hover {
    background-color: #ebebeb;
} */